import PlaceholderPage from "@/components/placeholders/PlaceholderPage"; /** * /:branch/search * * Important: * - This is a static segment under [branch]. * - It must exist explicitly, so "search" is not interpreted as [year]. * * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes. */ export default async function BranchSearchPage({ params }) { const resolvedParams = await params; return ( ); }